home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
health
/
child1b.frm
< prev
next >
Wrap
Text File
|
1993-07-22
|
4KB
|
142 lines
VERSION 2.00
Begin Form MDIChild1B
BackColor = &H00C0C0C0&
Caption = "RESPIRATION / CIRCULATION PATTERN"
ClientHeight = 4020
ClientLeft = 1470
ClientTop = 1860
ClientWidth = 9600
Height = 4425
Left = 1410
LinkTopic = "Form2"
MDIChild = -1 'True
ScaleHeight = 4020
ScaleWidth = 9600
Top = 1515
Width = 9720
Begin VBedit BEdit1B
CellHeight = 500
CellWidth = 500
CombBaseLine = 500
CombEndHeight = 360
CombEndMarker = 0 'False
CombHeight = 270
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 24
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 855
InflateBottom = 180
InflateLeft = 180
InflateRight = 180
InflateTop = 240
Left = 1080
TabIndex = 4
Top = 0
Version = 268435458
Width = 7695
End
Begin AniPushButton AniButton3B
BackColor = &H00C0C0C0&
Cycle = 2 '2-state 1/2 & 1/2
Height = 480
Left = 8880
PictDrawMode = 1 'Autosize control
Picture = CHILD1B.FRX:0000
TabIndex = 3
Top = 240
Width = 480
End
Begin VHedit HEdit1B
FontBold = 0 'False
FontItalic = 0 'False
FontName = "Arial"
FontSize = 24
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 540
InflateBottom = 270
InflateLeft = 270
InflateRight = 270
InflateTop = 270
Left = 8880
TabIndex = 2
Top = 840
Version = 268435458
Visible = 0 'False
Width = 495
End
Begin ListBox List2
BackColor = &H00FF0000&
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 12
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FFFFFF&
Height = 2880
Index = 1
Left = 4680
TabIndex = 1
Top = 1080
Width = 4815
End
Begin ListBox List2
BackColor = &H00FF0000&
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 12
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FFFFFF&
Height = 2880
Index = 0
Left = 0
TabIndex = 0
Top = 1080
Width = 4695
End
End
Sub AniButton3B_Click ()
Select Case anibutton3B.Value
Case 2
editswap bedit1B, hedit1B, 1
hedit1B.Visible = -1
bedit1B.Visible = 0
appendflag2 = -1
Case 1
editswap bedit1B, hedit1B, 2
hedit1B.Visible = 0
bedit1B.Visible = -1
appendflag2 = 0
End Select
End Sub
Sub List2_Click (Index As Integer)
If appendflag2 Then
Select Case Index
Case 0
LIST2(1).AddItem LIST2(0).List(LIST2(0).ListIndex) + " " + bedit1B.Text
Case 1
LIST2(1).RemoveItem LIST2(1).ListIndex
End Select
Else
Select Case Index
Case 0
LIST2(1).AddItem LIST2(0).List(LIST2(0).ListIndex)
Case 1
LIST2(1).RemoveItem LIST2(1).ListIndex
End Select
End If
End Sub